@import "../root.css";

.register-form {
    position: absolute;
    width: 30%;

    display: flex;
    flex-direction: column;

    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;

    top: 50%;
    transform: translateY(-50%);
}

.register span {
    font-family: "Inter";
    font-weight: 500;
    font-size: 20px;

    margin-bottom: 10px;
}

.register input {
    height: 48px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: white;
    border-radius: 5px;
    border: 1px solid var(--main-gray);
    padding-left: 10px;
    outline: none;
}

.register input:focus {
    border: 1px solid var(--main-gray);
    outline: none;
}

.buttons {
    width: 100%;
}

.buttons button {
    font-family: "Inter";
    font-size: 17px;
}

.black-button {
    position: absolute;
    width: 50%;
    height: 60px;

    background-color: black;
    color: white;
    border-radius: 10px;

    margin-left: 50%;
}

.transparent-button {
    position: absolute;
    width: 50%;
    height: 60px;

    background-color: transparent;
    color: black;
    border: none;
    border-radius: 10px;
}


.forgot-password {
    font-family: "Inter";
    font-weight: 400;
    font-size: 14px;

    color: var(--main-gray);
    text-align: right;
    margin-top: 65px;
}

.new-btc {
    position: absolute;

    top: 20%;
    left: 10%;
}

.new-btc-blured {
    position: absolute;

    width: 35%;
    
    right: 0;
    transform: translateX(35%);

    bottom: 0;
}


.popup-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.popup-content {
    margin-bottom: 15px;
}

.input-field {
    margin-bottom: 10px;
}

.input-email {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-submit {
    padding: 10px 20px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 100%;
}

.btn-link {
    color: #3498db;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.btn-link:hover {
    text-decoration: underline;
}

@media (max-width: 1440px) {
    .register-form {
        width: 40%;
    }

    .new-btc {
        width: 20%;
    }
}

@media (max-width: 1110px) {
    .new-btc-blured {
        width: 45%;
    }
}

@media (max-width: 990px) {
    .register-form {
        width: 60%;
    }
}

@media (max-width: 770px) {
    .new-btc-blured {
        width: 55%;
    }
}

@media (max-width: 710px) {
    .register-form {
        width: 80%;
    }

    .new-btc-blured {
        width: 65%;
    }
    
    .new-btc {
        width: 30%;
    }
}

@media (max-width: 570px) {
    .register-form {
        width: 90%;
    }

    .new-btc-blured {
        width: 75%;
    }

    .new-btc {
        width: 40%;
        left: 0;
    }
}